home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / connec1r / form8.frm (.txt) < prev    next >
Encoding:
Visual Basic Form  |  1999-07-14  |  882 b   |  32 lines

  1. VERSION 5.00
  2. Begin VB.Form Form8 
  3.    Caption         =   "Form8"
  4.    ClientHeight    =   795
  5.    ClientLeft      =   3690
  6.    ClientTop       =   4170
  7.    ClientWidth     =   4680
  8.    LinkTopic       =   "Form8"
  9.    ScaleHeight     =   795
  10.    ScaleWidth      =   4680
  11.    Begin VB.CommandButton Command1 
  12.       Caption         =   "Grow"
  13.       Height          =   615
  14.       Left            =   120
  15.       TabIndex        =   0
  16.       Top             =   120
  17.       Width           =   4455
  18.    End
  19. Attribute VB_Name = "Form8"
  20. Attribute VB_GlobalNameSpace = False
  21. Attribute VB_Creatable = False
  22. Attribute VB_PredeclaredId = True
  23. Attribute VB_Exposed = False
  24. Private Sub Command1_Click()
  25. If Form8.Height = 1200 Then
  26.     Form8.Height = 3600
  27.     Form8.Command1.Caption = "Shrink"
  28.     Form8.Height = 1200
  29.     Form8.Command1.Caption = "Grow"
  30. End If
  31. End Sub
  32.